home *** CD-ROM | disk | FTP | other *** search
/ Workbench Design / WB Collection.iso / workbench werkzeuge / memory & system tools / copymemquicker / source / makefile < prev    next >
Makefile  |  1996-04-07  |  474b  |  26 lines

  1. #
  2. #This makefile is for the Aztec system.
  3. #The program 'HunkFix' is not necessary, it just removes unused hunks.
  4. #
  5.  
  6. objs=copymemquicker.o cm000.o cm010.o cm020.o
  7.  
  8. all: CopyMemQuicker TestIt
  9.  
  10. .asm.o:
  11.     as -l $*
  12.  
  13. CopyMemQuicker: $(objs)
  14.     ln -o CopyMemQuicker $(objs) -lC
  15.     HunkFix >NIL: $@
  16.  
  17. TestIt: TestIt.o
  18.     ln -o TestIt -m $*.o -lC +l -lamiga
  19.     HunkFix >NIL: $@
  20.  
  21. TestIt.o: TestIt.c testit.pre
  22.     cc $* -so -wu -ms -hi $*.pre
  23.  
  24. testit.pre: TestIt.h
  25.     cc $*.h -so -wu -ms -ho $*.pre
  26.